<folder name="Actions" id="Actions" sort="false" tiptext="Actions that can be added to your script" helpid="2202">
<folder name="Movie Control" id="Movie Control" tiptext="Actions which control movie playback" helpid="2615">
<ifmode mode="normal">
<action id="goto" name="goto" tiptext="Go to the specified frame of the movie" helpid="2349" quickey="go" />
</ifmode>
<ifmode mode="expert">
<action name="gotoAndPlay" tiptext="Go to the specified frame and play" helpid="2350"
text="gotoAndPlay(% frame %);\n"
text2="gotoAndPlay(% scene, frame %);\n"
quickey="gp" />
<action name="gotoAndStop" tiptext="Go to the specified frame and stop" helpid="2351"
text="gotoAndStop(% frame %);\n"
text2="gotoAndStop(% scene, frame %);\n"
quickey="gs" />
<action name="nextFrame" tiptext="Go to the next frame" helpid="2424" text="nextFrame();\n" quickey="nf" />
<action name="prevFrame" tiptext="Go to the previous frame" helpid="2453" text="prevFrame();\n" quickey="pf" />
<action name="nextScene" tiptext="Go to the next scene" helpid="2425" text="nextScene();\n" quickey="ns" />
<action name="prevScene" tiptext="Go to the previous scene" helpid="2454" text="prevScene();\n" quickey="ps" />
</ifmode>
<action id="play" name="play" tiptext="Start playing the movie" helpid="2449" text="play();\n" quickey="pl" />
<action id="stop" name="stop" tiptext="Stop playing the movie" helpid="2486" text="stop();\n" quickey="st" />
<action id="stopAllSounds" name="stopAllSounds" tiptext="Stop playing all sounds" helpid="2487" text="stopAllSounds();\n" quickey="ss" />
<action id="on" name="on" tiptext="Performs actions when a particular mouse event occurs" helpid="2438"
text="on (% event %) {\n}\n"
codehint="false"
quickey="on" version="3" />
</folder>
<folder name="Browser/Network" id="Browser_Network" tiptext="Actions which control the Web browser and network" helpid="2616">
<action id="getURL" name="getURL" tiptext="Tell Web browser to navigate to specified URL" helpid="2345" text="getURL(% url, window, method %);\n" quickey="gu" />
<ifmode mode="normal">
<action id="loadMovie" name="loadMovie" tiptext="Load a movie clip from an URL" helpid="2389" quickey="lm" version="3" />
<action id="unloadMovie" name="unloadMovie" tiptext="Unload a movie clip loaded with loadMovie" helpid="2527" quickey="um" version="3" />
<action id="loadVariables" name="loadVariables" tiptext="Load variables from an URL" helpid="2390" quickey="lv" version="4" />
</ifmode>
<ifmode mode="expert">
<action name="loadMovie" tiptext="Load a movie clip from an URL" helpid="2389" text="loadMovie(% url, target, method %);\n" quickey="lm" version="3" />
<action name="loadMovieNum" tiptext="Load a movie clip from an URL into a level" helpid="2598" text="loadMovieNum(% url, level, method %);\n" quickey="ln" version="3" />
<action name="loadVariables" tiptext="Load variables from an URL" helpid="2390" text="loadVariables(% url, target, method %);\n" quickey="lv" version="4" />
<action name="loadVariablesNum" tiptext="Load variables from an URL into a level" helpid="2597" text="loadVariablesNum(% url, level, method %);\n" quickey="vn" version="4" />
<action name="unloadMovie" tiptext="Unload a movie clip loaded with loadMovie" helpid="2527" text="unloadMovie(% target %);\n" quickey="um" version="3" />
<action name="unloadMovieNum" tiptext="Unload a movie clip loaded with loadMovieNum" helpid="2599" text="unloadMovieNum(% level %);\n" quickey="un" version="3" />
<folder name="Movie Clip Control" id="Movie Clip Control" tiptext="Actions which control Movie Clips" helpid="2617">
<action id="onClipEvent" name="onClipEvent" tiptext="Performs actions when a particular movie clip event occurs" helpid="2439"
text="onClipEvent (% event %) {\n}\n"
codehint="false"
quickey="oc" version="5" />
<action id="setProperty" name="setProperty" tiptext="Set a property of a movie clip" helpid="2475" text="setProperty(% target, property, value %);\n" quickey="sp" version="4" />
<action id="duplicateMovieClip" name="duplicateMovieClip" tiptext="Make a duplicate of a movie clip" helpid="2264" text="duplicateMovieClip(% target, newname, depth %);\n" quickey="dm" version="4" />
<action id="removeMovieClip" name="removeMovieClip" tiptext="Removes a movie clip created with duplicateMovieClip" helpid="2460" text="removeMovieClip(% target %);\n" quickey="rm" version="4" />
<action id="startDrag" name="startDrag" tiptext="Start a drag operation on a movie clip" helpid="2485" text="startDrag(% target, lockcenter, l, t, r, b %);\n" quickey="dr" version="4" />
<action id="stopDrag" name="stopDrag" tiptext="Stops a drag operation currently in progress" helpid="2488" text="stopDrag();\n" quickey="sd" version="4" />
<string name="updateAfterEvent" tiptext='Updates the stage after "mouse" or "key" clip events' helpid="2581" text="updateAfterEvent()" type="procedure" version="5" />
</folder>
<folder name="Variables" id="Variables" tiptext="Actions that modify and access variables" helpid="2618">
<action id="set variable" name="set variable" tiptext="Set a variable" helpid="2476" text="set (% name, value %);\n" quickey="sv" version="4" />
<action id="with" name="with" tiptext="Actions within with operate on the specified object" helpid="2534" text="with (% object %) {\n}\n" quickey="wt" version="5" />
<action id="delete" name="delete" tiptext="Delete a variable or object" helpid="2321" text="delete (% path %);\n" quickey="de" version="5" />
<action id="for in" name="for..in" tiptext="Enumerates the children of an object" helpid="2336" text="for (% $iterator$ in $object$ %) {\n}\n" quickey="fi" version="5" />
<action id="break" name="break" tiptext="Break out of the enclosing loop" helpid="2244" text="break;\n" quickey="br" version="4" />
<action id="continue" name="continue" tiptext="Continue at the start of the enclosing loop" helpid="2275" text="continue;\n" quickey="co" version="4" />
<ifdef mode="FEATURE_SWITCH_AND_STRICT_EQUALITY">
<action id="switch" name="switch" tiptext="Performs a block of code based on a condition" helpid="2606" text="switch (% condition %) {\n}\n" quickey="sw" version="4" />
<action id="case" name="case" tiptext="Identifies a block of code inside a 'switch' statement" helpid="2607" text="case condition :\n" quickey="ce" version="4" />
<action id="default" name="default" tiptext="Identifies the default block of code in a 'switch' statement" helpid="2608" text="default :\n" quickey="dt" version="4" />
</ifdef>
</folder>
<folder name="Printing" id="Printing" tiptext="Actions that print movies or movie clips" helpid="2622">
<action id="print" name="print" tiptext="Print a movie clip" helpid="2455" text="print(% target, type %);\n" quickey="pr" version="4" />
<ifmode mode="expert">
<action name="printAsBitmap" tiptext="Prints a movie clip as a bitmap" helpid="2456" text="printAsBitmap(% target, type %);\n" quickey="pb" version="4" />
<action name="printNum" tiptext="Print a level" helpid="2600" text="printNum(% level, type %);\n" quickey="pn" version="4" />
<action name="printAsBitmapNum" tiptext="Prints a level as a bitmap" helpid="2601" text="printAsBitmapNum(% level, type %);\n" quickey="bn" version="4" />
</ifmode>
</folder>
<folder name="User-Defined Functions" id="User-Defined Functions" tiptext="Actions that create and invoke functions" helpid="2620">
<folder name="Functions" id="Functions" tiptext="Functions to use in expressions" helpid="2339" version="4" >
<string name="eval" tiptext="Returns value of variable named by the expresssion" helpid="2329" text="eval(% variable %)" version="4" />
<string name="getTimer" tiptext="The number of milliseconds since the movie started playing" helpid="2519" text="getTimer()" version="4" />
<string name="escape" tiptext="Escapes characters in a string not permitted in URLs" helpid="2328" text="escape(% string %)" version="5" />
<string name="unescape" tiptext="Unescapes %XX hex sequences in a string" helpid="2526" text="unescape(% string %)" version="5" />
<string name="getProperty" tiptext="Returns a property of the specified movie clip" helpid="2343" text="getProperty(% target, property %)" version="4" />
<string name="getVersion" tiptext="Get version number of Flash Player" helpid="2346" text="getVersion()" version="4" />
<string name="targetPath" tiptext="Returns the target path string for a specified movie clip" helpid="2517" text="targetPath(% movieClip %)" version="5" />
<folder name="Properties" id="Properties" tiptext="Properties of movie clips" helpid="2457" version="4" >
<property name="_x" description="X Position" tiptext="X position of a movie clip" helpid="2535" variable="_x" version="4" />
<property name="_y" description="Y Position" tiptext="Y position of a movie clip" helpid="2570" variable="_y" version="4" />
<property name="_xmouse" description="X Mouse Position" tiptext="X position of the mouse" helpid="2413" variable="_xmouse" version="5" />
<property name="_ymouse" description="Y Mouse Position" tiptext="Y position of the mouse" helpid="2414" variable="_ymouse" version="5" />
<property name="_xscale" description="X Scale Factor" tiptext="X scale factor of a movie clip (percentage)" helpid="2465" variable="_xscale" version="4" />
<property name="_yscale" description="Y Scale Factor" tiptext="Y scale factor of a movie clip (percentage)" helpid="2466" variable="_yscale" version="4" />
<property name="_width" description="Width" tiptext="Width of a movie clip" helpid="2533" variable="_width" version="4" />
<property name="_height" description="Height" tiptext="Height of a movie clip" helpid="2353" variable="_height" version="4" />
<property name="_alpha" description="Alpha" tiptext="Alpha transparency of a movie clip (percentage)" helpid="2203" variable="_alpha" version="4" />
<property name="_visible" description="Visibility" tiptext="Returns true if movie clip is visible, false if hidden" helpid="2530" variable="_visible" version="4" />
<property name="_target" description="Target" tiptext="Target path of a movie clip" helpid="2516" variable="_target" version="4" />
<property name="_rotation" description="Rotation" tiptext="Angle of rotation of a movie clip (degrees)" helpid="2463" variable="_rotation" version="4" />
<property name="_name" description="Name" tiptext="Instance name of a movie clip" helpid="2419" variable="_name" version="4" />
<property name="_framesloaded" description="Frames Loaded" tiptext="Number of frames already loaded in a movie clip" helpid="2386" variable="_framesloaded" version="4" />
<property name="_droptarget" description="Drop Target" tiptext="During drag, movie clip the dragged movie clip is over" helpid="2324" variable="_droptarget" version="4" />
<property name="_currentframe" description="Current Frame" tiptext="Current frame of a movie clip" helpid="2280" variable="_currentframe" version="4" />
<property name="_totalframes" description="Total Frames" tiptext="Total number of frames in a movie clip" helpid="2522" variable="_totalframes" version="4" />
<property name="_quality" description="Quality" tiptext="Current rendering quality as string: LOW, MEDIUM, HIGH or BEST" helpid="2573" variable="_quality" version="5" />
<property name="_focusrect" description="Show focus rectangle" tiptext="Returns false if tab focus rectangles are hidden, true if displayed" helpid="2334" variable="_focusrect" version="4" />
<property name="_soundbuftime" description="Sound buffer time" tiptext="Number of seconds of sound to prebuffer, default = 5" helpid="2481" variable="_soundbuftime" version="4" />
<property name="_url" description="Movie clip URL" tiptext="URL a movie clip was loaded from" helpid="2528" variable="_url" version="4" />
<string name="_global" text="_global" tiptext="The global object, which holds global variables" helpid="2650" version="6" />
</ifdef>
<ifdef mode="FEATURE_XML_ACTIONS_TOOLBOX">
<folder name="arguments" id="arguments" index="true" tiptext="Object passed to user-defined functions"
helpid="2733" version="5">
<string name="callee" tiptext="Function object that is being invoked" helpid="2735" text="arguments.callee" version="5" />
<string name="caller" tiptext="Function object that invoked this function" helpid="2734" text="arguments.caller" version="6" />
<string name="length" tiptext="Number of arguments passed to this function" helpid="3004" text="arguments.length" version="6" />
</folder>
</ifdef>
<!-- Array object -->
<folder name="Array" id="Array" sort="false" index="true" tiptext="Object that helps you work with arrays" helpid="2209" version="5" >
<string name="new Array" tiptext="Creates a new Array object" helpid="2208"
text="new Array(%%)"
text2="new Array(% length %)"
text3="new Array(% item1, ..., itemN %)"
version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of the Array object" helpid="2718" version="5">
<string name="concat" tiptext="Concatenates this array to others and return new array" helpid="2205" object="Array" text=".concat(% array1, ..., arrayN %)" version="5" />
<string name="join" tiptext="Joins all array elements into string" helpid="2206" object="Array" text=".join(% separator %)" version="5" />
<string name="pop" tiptext="Remove last item in array and return it" helpid="2210" object="Array" text=".pop()" version="5" />
<string name="push" tiptext="Append new item to the end of array" helpid="2211" object="Array" text=".push(% value %)" type="procedure" version="5" />
<string name="reverse" tiptext="Rearranges the elements of an array into reverse order" helpid="2462" object="Array" text=".reverse()" type="procedure" version="5" />
<string name="shift" tiptext="Remove first item in array and return it" helpid="2212" object="Array" text=".shift()" version="5" />
<string name="slice" tiptext="Returns new array of elements from indexA to indexB" helpid="2213" object="Array" text=".slice(% indexA, indexB %)" version="5" />
<string name="sort" tiptext="Sorts an array" helpid="2479" object="Array"
text=".sort(%%)"
text2=".sort(% compareFunction %)"
type="procedure" version="5" />
<string name="sortOn" tiptext="Sorts an array, using object property as sort key" helpid="3021" object="Array"
<string name="toString" tiptext="Return string of all array elements separated by commas" helpid="2577" object="Array" text=".toString()" version="5" />
<string name="unshift" tiptext="Insert a new item at the beginning of the array" helpid="2215" object="Array" text=".unshift(% value %)" type="procedure" version="5" />
</folder>
<folder name="Properties" id="Properties" tiptext="Properties of the Array object" helpid="2719" version="5">
<string name="length" tiptext="Length of the array" helpid="2207" object="Array" text=".length" version="5" />
<string name="getSeconds" tiptext="Gets seconds since last minute began [local time]" helpid="2289" object="Date" text=".getSeconds()" version="5" />
<string name="getMilliseconds" tiptext="Gets milliseconds since last second began [local time]" helpid="2286" object="Date" text=".getMilliseconds()" version="5" />
<string name="getYear" tiptext="Gets the year minus 1900 [local time]" helpid="2300" object="Date" text=".getYear()" version="5" />
<string name="UTC" tiptext="Returns time value for specific UTC date and time" helpid="2319" text="Date.UTC(% year, month, date, hour, min, sec, ms %)" version="5" />
<string name="getTimezoneOffset" tiptext="Gets offset of local time from UTC time in minutes" helpid="2291" object="Date" text=".getTimezoneOffset()" version="5" />
<string name="getTime" tiptext="Gets milliseconds since midnight Jan 1 1970 UTC" helpid="2290" object="Date" text=".getTime()" version="5" />
<string name="getUTCDate" tiptext="Gets day of month [UTC time]" helpid="2292" object="Date" text=".getUTCDate()" version="5" />
<string name="getUTCMonth" tiptext="Gets month of year (0=Jan, 1=Feb, ...) [UTC time]" helpid="2298" object="Date" text=".getUTCMonth()" version="5" />
<string name="getUTCFullYear" tiptext="Gets the full year (e.g. 2000) [UTC time]" helpid="2294" object="Date" text=".getUTCFullYear()" version="5" />
<string name="getUTCDay" tiptext="Gets day of week (0=Sun, 1=Mon, ...) [UTC time]" helpid="2293" object="Date" text=".getUTCDay()" version="5" />
<string name="getUTCHours" tiptext="Gets hour of day (0=12am, 23=11pm) [UTC time]" helpid="2295" object="Date" text=".getUTCHours()" version="5" />
<string name="getUTCSeconds" tiptext="Gets seconds since last minute began [UTC time]" helpid="2299" object="Date" text=".getUTCSeconds()" version="5" />
<string name="getUTCMilliseconds" tiptext="Gets milliseconds since last second began [UTC time]" helpid="2296" object="Date" text=".getUTCMilliseconds()" version="5" />
<string name="setTime" tiptext="Sets milliseconds since midnight Jan 1 1970 UTC" helpid="2309" object="Date" text=".setTime(% value %)" type="procedure" version="5" />
<string name="setDate" tiptext="Sets day of month [local time]" helpid="2302" object="Date" text=".setDate(% date %)" type="procedure" version="5" />
<string name="setMonth" tiptext="Sets month of year (0=Jan, 1=Feb, ...) [local time]" helpid="2307" object="Date" text=".setMonth(% month, date %)" type="procedure" version="5" />
<string name="setFullYear" tiptext="Sets the full year (e.g. 2000) [local time]" helpid="2303" object="Date" text=".setFullYear(% year, month, date %)" type="procedure" version="5" />
<string name="setHours" tiptext="Sets hour of day (0=12am, 23=11pm) [local time]" helpid="2304" object="Date" text=".setHours(% hours, minutes, seconds, ms %)" type="procedure" version="5" />
<string name="setMinutes" tiptext="Sets minute of hour [local time]" helpid="2306" object="Date" text=".setMinutes(% minutes, seconds, ms %)" type="procedure" version="5" />
<string name="setSeconds" tiptext="Sets seconds since last minute began [local time]" helpid="2308" object="Date" text=".setSeconds(% seconds, ms %)" type="procedure" version="5" />
<string name="setMilliseconds" tiptext="Sets milliseconds since last second started [local time]" helpid="2305" object="Date" text=".setMilliseconds(% ms %)" type="procedure" version="5" />
<string name="setYear" tiptext="Sets the year minus 1900 [local time]" helpid="2317" object="Date" text=".setYear(% year, month, date %)" type="procedure" version="5" />
<string name="setUTCDate" tiptext="Sets day of month [UTC time]" helpid="2310" object="Date" text=".setUTCDate(% date %)" type="procedure" version="5" />
<string name="setUTCMonth" tiptext="Sets month of year (0=Jan, 1=Feb, ...) [UTC time]" helpid="2315" object="Date" text=".setUTCMonth(% month, date %)" type="procedure" version="5" />
<string name="setUTCFullYear" tiptext="Sets full year (e.g. 2000) [UTC time]" helpid="2311" object="Date" text=".setUTCFullYear(% year, month, date %)" type="procedure" version="5" />
<string name="setUTCHours" tiptext="Sets hour of day (0=12am, 23=11pm) [UTC time]" helpid="2312" object="Date" text=".setUTCHours(% hours, minutes, seconds, ms %)" type="procedure" version="5" />
<string name="setUTCMinutes" tiptext="Sets minute of hour [UTC time]" helpid="2314" object="Date" text=".setUTCMinutes(% minutes, seconds, ms %)" type="procedure" version="5" />
<string name="setUTCSeconds" tiptext="Sets seconds since last minute began [UTC time]" helpid="2316" object="Date" text=".setUTCSeconds(% seconds, ms %)" type="procedure" version="5" />
<string name="setUTCMilliseconds" tiptext="Sets milliseconds since last second began [UTC time]" helpid="2313" object="Date" text=".setUTCMilliseconds(% ms %)" type="procedure" version="5" />
<string name="toString" tiptext="Return a string representation of the date/time" helpid="2318" object="Date" text=".toString()" version="5" />
<string name="NaN" tiptext="NaN (Not A Number)" helpid="2420" text="Number.NaN" version="5" />
</folder>
</folder>
<!-- Object object -->
<folder name="Object" id="Object" sort="false" index="true" tiptext="Object is the primitive ActionScript object type"
helpid="2434" version="5">
<string name="new Object" tiptext="Creates a new Object object" helpid="2433"
text="new Object(%%)"
text2="new Object(% value %)"
version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of Object objects" helpid="2710" version="5">
<string name="toString" tiptext="Converts this object to its string representation" helpid="2435" object="Object" text=".toString()" version="5" />
<string name="valueOf" tiptext="Returns the primitive value of this object" helpid="2436" object="Object" text=".valueOf()" version="5" />
<ifdef mode="FEATURE_OBJECT_MODEL">
<string name="watch" tiptext="Add a watchpoint on an object property" helpid="2602" object="Object" text=".watch(% prop, callback, userData %)" type="procedure" version="6" />
<string name="unwatch" tiptext="Removes a watchpoint created with Object.watch" helpid="2603" object="Object" text=".unwatch(% prop %)" type="procedure" version="6" />
<string name="registerClass" tiptext="Associates a linkage identifier with an object class" helpid="2604" text="Object.registerClass(% symbolID, theClass %)"
type="procedure" version="6" />
<string name="addProperty" tiptext="Registers a getter/setter property on an object" helpid="2605" object="Object"
<folder name="String" id="String" sort="false" index="true" tiptext="Object that helps you work with strings" helpid="2505" version="5">
<string name="new String" tiptext="Creates a new String object" helpid="2504"
text="new String(% value %)"
text2="new String(%%)" version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of String objects" helpid="2704" version="5">
<string name="charAt" tiptext="Return character at specified index" helpid="2490" object="String" text=".charAt(% index %)" version="5" />
<string name="charCodeAt" tiptext="Return character code at specified index" helpid="2491" object="String" text=".charCodeAt(% index %)" version="5" />
<string name="fromCharCode" tiptext="Construct string from character codes" helpid="2494" text="String.fromCharCode(% num1, ..., numN %)" version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of Button objects" helpid="3001" version="6">
<string name="getDepth" tiptext='Returns the absolute "z" order of the button' helpid="3002" object="Button" text=".getDepth()" version="6" />
</folder>
<folder name="Properties" id="Properties" tiptext="Properties of Button objects" helpid="2686" version="6">
<string name="enabled" tiptext="If true, button is enabled; if false, disabled" helpid="2610" object="Button" text=".enabled" version="6" />
<string name="useHandCursor" tiptext="If true, use hand cursor over button rather than arrow" helpid="2611" object="Button" text=".useHandCursor" version="6" />
<ifdef mode="FEATURE_EVENT_MODEL">
<string name="tabIndex" tiptext="Tab index of button" helpid="2729" object="Button" text=".tabIndex" version="6" />
<folder name="Properties" id="Properties" tiptext="Properties of the Capabilities object" helpid="3010" version="6">
<string name="hasAudio" tiptext="If true, system has audio capabilities" helpid="2748" text=".hasAudio" object="Capabilities" version="6" />
<string name="hasMP3" tiptext="If true, system has MP3 sound capabilities" helpid="2749" text=".hasMP3" object="Capabilities" version="6" />
<string name="hasAudioEncoder" tiptext="If true, system can encode audio" helpid="2750" text=".hasAudioEncoder" object="Capabilities" version="6" />
<string name="hasVideoEncoder" tiptext="If true, system can encode video" helpid="2751" text=".hasVideoEncoder" object="Capabilities" version="6" />
<string name="screenResolutionX" tiptext="Screen X resolution in pixels" helpid="2752" text=".screenResolutionX" object="Capabilities" version="6" />
<string name="screenResolutionY" tiptext="Screen Y resolution in pixels" helpid="2753" text=".screenResolutionY" object="Capabilities" version="6" />
<string name="screenDPI" tiptext="Screen dots per inch (dpi)" helpid="2754" text=".screenDPI" object="Capabilities" version="6" />
<string name="screenColor" tiptext="String indicating type of color screen" helpid="2755" text=".screenColor" object="Capabilities" version="6" />
<string name="pixelAspectRatio" tiptext="Pixel aspect ratio of screen" helpid="2756" text=".pixelAspectRatio" object="Capabilities" version="6" />
<string name="hasAccessibility" tiptext="If true, system has Accessibility features" helpid="2757" text=".hasAccessibility" object="Capabilities" version="6" />
</folder>
</folder>
</ifdef>
<!-- Color object -->
<folder name="Color" id="Color" index="true" sort="false" tiptext="Object that controls the color transform of movie clips" helpid="2268" version="5" >
<string name="new Color" tiptext="Creates a color object" helpid="2267" text="new Color(% target %)" version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of the Color object" helpid="2721" version="5">
<string name="getRGB" tiptext="Gets the color RGB offsets transform" helpid="2265" object="Color" text=".getRGB()" version="5" />
<string name="getTransform" tiptext="Gets the color transform" helpid="2266" object="Color" text=".getTransform()" version="5" />
<string name="setRGB" tiptext="Sets the color RGB offsets of the color transform" helpid="2269" object="Color" text=".setRGB(% 0xRRGGBB %)" type="procedure" version="5" />
<string name="setTransform" tiptext="Sets the color transform" helpid="2270" object="Color" text=".setTransform(% cxform %)" type="procedure" version="5" />
</folder>
</folder>
<!-- Key Object -->
<folder name="Key" id="Key" index="true" sort="false" tiptext="Object which help you interface with the keyboard"
helpid="2378" version="5" >
<folder name="Methods" id="Methods" tiptext="Methods of the Key object" helpid="2716" version="5">
<string name="getAscii" tiptext="Gets the ASCII code of the last key pressed or released" helpid="2364" text="Key.getAscii()" version="5" />
<string name="getCode" tiptext="Gets the virtual key code of the last key pressed or released" helpid="2363" text="Key.getCode()" version="5" />
<string name="isDown" tiptext="Returns true if key is down" helpid="2375" text="Key.isDown(% keyCode %)" version="5" />
<string name="isToggled" tiptext="Returns true if key is toggled" helpid="2376" text="Key.isToggled(% keyCode %)" version="5" />
<string name="addListener" tiptext="Adds a listener for onKeyDown/onKeyUp events" helpid="2957" text="Key.addListener(% listener %)" type="procedure" version="6" />
<string name="removeListener" tiptext="Removes a listener for onKeyDown/onKeyUp events" helpid="2958" text="Key.removeListener(% listener %)" type="procedure" version="6" />
</folder>
<folder name="Constants" id="Constants" tiptext="Constant properties of the Key object" helpid="2717" version="5">
<string name="addListener" tiptext="Adds a listener for onMouseDown/onMouseMove/onMouseUp events" helpid="2959" text="Mouse.addListener(% listener %)" type="procedure" version="6" />
<string name="removeListener" tiptext="Removes a listener for onMouseDown/onMouseMove/onMouseUp events" helpid="2960" text="Mouse.removeListener(% listener %)" type="procedure" version="6" />
</ifdef>
</folder>
<ifdef mode="FEATURE_EVENT_MODEL">
<folder name="Listeners" id="Listeners" tiptext="Listener callbacks of the Mouse object" helpid="2975" version="6">
<string name="onMouseDown" tiptext="Listener invoked when mouse button is pressed" helpid="2976" text=".onMouseDown" version="6" type="listener" />
<string name="onMouseMove" tiptext="Listener invoked when mouse is moved" helpid="2977" text=".onMouseMove" version="6" type="listener" />
<string name="onMouseUp" tiptext="Listener invoked when mouse button is released" helpid="2978" text=".onMouseUp" version="6" type="listener" />
</folder>
</ifdef>
</folder>
<!-- MovieClip object -->
<folder name="MovieClip" id="MovieClip" sort="false" index="true" tiptext="Object that represents a movie clip" helpid="2256" version="5" >
<folder name="Methods" id="Methods" tiptext="Methods of MovieClip Object" helpid="2677" version="5" >
<string name="attachMovie" tiptext="Creates instance of movie clip located in the Library" helpid="2248" object="MovieClip" text=".attachMovie(% idName, newName, depth [, initObject] %)" type="procedure" version="5" />
<ifdef mode="FEATURE_DRAWING_API">
<string name="createEmptyMovieClip" tiptext="Creates an empty Movie Clip instance" helpid="2855" object="MovieClip" text=".createEmptyMovieClip(% instanceName, depth %)" type="procedure" version="6" />
</ifdef>
<ifdef mode="FEATURE_TEXTFIELD_OBJECT">
<string name="createTextField" tiptext="Creates an empty text field" helpid="2918" object="MovieClip" text=".createTextField(% instanceName, depth, x, y, width, height %)" type="procedure" version="6" />
</ifdef>
<string name="duplicateMovieClip" tiptext="Duplicates this movie clip" helpid="2249" object="MovieClip" text=".duplicateMovieClip(% newName, depth [, initObject] %)" type="procedure" version="5" />
<string name="getBounds" tiptext="Returns an object whose properties contain the bounds of the movie clip" helpid="2576" object="MovieClip" text=".getBounds(% targetCoordinateSpace %)" version="5" />
<string name="getBytesLoaded" tiptext="Returns the number of bytes loaded for this movie clip" helpid="2582" object="MovieClip" text=".getBytesLoaded()" version="5" />
<string name="getBytesTotal" tiptext="Returns the size of the movie clip" helpid="2583" object="MovieClip" text=".getBytesTotal()" version="5" />
<string name="getDepth" tiptext='Returns the absolute "z" order of the movie clip' helpid="2965" object="MovieClip" text=".getDepth()" version="6" />
<string name="getURL" tiptext="Navigates to an URL, optionally sending variables" helpid="2250" object="MovieClip" text=".getURL(% url, window, method %)" type="procedure" version="5" />
<string name="globalToLocal" tiptext="Converts stage coordinate to movie clip coordinate" helpid="2348" object="MovieClip" text=".globalToLocal(% point %)" type="procedure" version="5" />
<string name="gotoAndPlay" tiptext="Go to a frame of movie clip and start playing" helpid="2251" object="MovieClip" text=".gotoAndPlay(% frame %)" type="procedure" version="5" />
<string name="gotoAndStop" tiptext="Go to a frame of movie clip and stop" helpid="2252" object="MovieClip" text=".gotoAndStop(% frame %)" type="procedure" version="5" />
<string name="hitTest" tiptext="Check if a point or movie clip intersects another movie clip" helpid="2355" object="MovieClip" text=".hitTest(% x, y, shapeFlag %)" version="5" />
<string name="loadMovie" tiptext="Loads a .swf from an URL into movie clip" helpid="2253" object="MovieClip" text=".loadMovie(% url, method %)" type="procedure" version="5" />
<string name="loadVariables" tiptext="Loads variables from an URL into movie clip" helpid="2254" object="MovieClip" text=".loadVariables(% url, method %)" type="procedure" version="5" />
<string name="localToGlobal" tiptext="Converts movie clip coordinate to stage coordinate" helpid="2391" object="MovieClip" text=".localToGlobal(% point %)" type="procedure" version="5" />
<string name="nextFrame" tiptext="Go to next frame of movie clip" helpid="2255" object="MovieClip" text=".nextFrame()" type="procedure" version="5" />
<string name="play" tiptext="Starts playing movie clip from current frame" helpid="2257" object="MovieClip" text=".play()" type="procedure" version="5" />
<string name="prevFrame" tiptext="Go to previous frame of movie clip" helpid="2258" object="MovieClip" text=".prevFrame()" type="procedure" version="5" />
<string name="removeMovieClip" tiptext="Removes movie clip created with duplicateMovieClip" helpid="2259" object="MovieClip" text=".removeMovieClip()" type="procedure" version="5" />
<ifdef mode="FEATURE_SCRIPTABLE_CLIPPING">
<string name="setMask" tiptext="Sets the scriptable mask of this movie clip" helpid="3020" object="MovieClip" text=".setMask(% maskMovieClip %)" type="procedure" version="6" />
</ifdef>
<string name="startDrag" tiptext="Starts drag operation on movie clip" helpid="2260" object="MovieClip" text=".startDrag(% lockCenter, left, top, right, bottom %)" type="procedure" version="5" />
<string name="stop" tiptext="Stops playing movie clip" helpid="2261" object="MovieClip" text=".stop()" type="procedure" version="5" />
<string name="swapDepths" tiptext='Swaps the "z" order of 2 Movie Clips' helpid="2514" object="MovieClip" text=".swapDepths(% target %)" type="procedure" version="5" />
<folder name="Drawing Methods" id="Drawing Methods" tiptext="Methods that perform direct drawing" helpid="2856" version="6" >
<string name="beginFill" tiptext="Identifies the beginning of a solid fill" helpid="2857" object="MovieClip" text=".beginFill(% rgb, alpha %)" type="procedure" version="6" />
<string name="beginGradientFill" tiptext="Identifies the beginning of a gradient fill" helpid="2858" object="MovieClip" text=".beginGradientFill(% fillType, colors, alphas, ratios, matrix %)" type="procedure" version="6" />
<string name="lineStyle" tiptext="Changes the current line style" helpid="2859" object="MovieClip" text=".lineStyle(% thickness, rgb, alpha %)" type="procedure" version="6" />
<string name="moveTo" tiptext="Moves the current drawing position" helpid="2860" object="MovieClip" text=".moveTo(% x, y %)" type="procedure" version="6" />
<string name="lineTo" tiptext="Draws a line from the current drawing position" helpid="2861" object="MovieClip" text=".lineTo(% x, y %)" type="procedure" version="6" />
<string name="curveTo" tiptext="Draws a curve from the current drawing position" helpid="3016" object="MovieClip" text=".curveTo(% controlX, controlY, anchorX, anchorY %)" type="procedure" version="6" />
<string name="endFill" tiptext="Identifies the end of a fill" helpid="2878" object="MovieClip" text=".endFill()" type="procedure" version="6" />
<string name="clear" tiptext="Clears all drawing commands on Movie Clip" helpid="2879" object="MovieClip" text=".clear()" type="procedure" version="6" />
</folder>
</ifdef>
<ifdef mode="FEATURE_EVENT_MODEL">
<folder name="Properties" id="Properties" tiptext="Properties of MovieClip object" helpid="2678" version="6">
<string name="enabled" tiptext="If true, button movie clip is enabled; if false, disabled" helpid="2679" object="MovieClip" text=".enabled" version="6" />
<string name="focusEnabled" tiptext="If true, movie clip may receive the focus" helpid="2967" object="MovieClip" text=".focusEnabled" version="6" />
<string name="hitArea" tiptext="Hit Area to use for Button Movie Clips" helpid="2680" object="MovieClip" text=".hitArea" version="6" />
<string name="tabIndex" tiptext="Tab index of a MovieClip object" helpid="2681" object="MovieClip" text=".tabIndex" version="6" />
<string name="tabChildren" tiptext="If true, children may be tab stops" helpid="2683" object="MovieClip" text=".tabChildren" version="6" />
<string name="trackAsMenu" tiptext="Track as Menu Item for Button Movie Clips" helpid="2684" object="MovieClip" text=".trackAsMenu" version="6" />
<string name="useHandCursor" tiptext="If true, use hand cursor over movie clip rather than arrow" helpid="2685" object="MovieClip" text=".useHandCursor" version="6" />
</folder>
<folder name="Events" id="Events" tiptext="Events received by MovieClip objects" helpid="2651" version="6">
<string name="onData" tiptext="Callback invoked when data event occurs" helpid="2667" object="MovieClip" text=".onData" version="6" type="event" />
<string name="onSetFocus" tiptext="Callback invoked when movie clip receives focus" helpid="2690" object="MovieClip" text=".onSetFocus(oldFocus)" version="6" type="event" />
<string name="onKillFocus" tiptext="Callback invoked when movie clip loses focus" helpid="2691" object="MovieClip" text=".onKillFocus(newFocus)" version="6" type="event" />
</folder>
</ifdef>
</folder>
<!-- Selection object -->
<folder name="Selection" id="Selection" sort="false" index="true" tiptext="Object that controls the edit text selection and focus"
helpid="2471" version="5" >
<folder name="Methods" id="Methods" tiptext="Methods of the Selection object" helpid="2708" version="5">
<string name="getBeginIndex" tiptext="Gets the beginning index of the edit text selection, -1 if none" helpid="2467" text="Selection.getBeginIndex()" version="5" />
<string name="getEndIndex" tiptext="Gets the end index of the edit text selection, -1 if none" helpid="2469" text="Selection.getEndIndex()" version="5" />
<string name="getCaretIndex" tiptext="Gets the position of the edit text caret, -1 if none" helpid="2468" text="Selection.getCaretIndex()" version="5" />
<string name="getFocus" tiptext="Gets the variable name of the focused edit text field" helpid="2470" text="Selection.getFocus()" version="5" />
<string name="setFocus" tiptext="Sets the currently focused edit text field" helpid="2472" text="Selection.setFocus(% instanceName %)" type="procedure" version="5" />
<string name="setSelection" tiptext="Sets the beginning and end of the text selection" helpid="2473" text="Selection.setSelection(% beginIndex, endIndex %)" type="procedure" version="5" />
<string name="addListener" tiptext="Adds a listener for the onSetFocus event" helpid="2961" text="Selection.addListener(% listener %)" type="procedure" version="6" />
<string name="removeListener" tiptext="Removes a listener for the onSetFocus event" helpid="2962" text="Selection.removeListener(% listener %)" type="procedure" version="6" />
</folder>
<ifdef mode="FEATURE_EVENT_MODEL">
<folder name="Listeners" id="Listeners" tiptext="Listener callbacks of the Selection object" helpid="2709" version="6">
<string name="setPan" tiptext="Sets the pan of sound" helpid="2474" object="Sound" text=".setPan(% pan %)" type="procedure" version="5" />
<string name="setTransform" tiptext="Set each channel to a combination of left and right channel" helpid="2482" object="Sound" text=".setTransform(% sxform %)" type="procedure" version="5" />
<string name="attachSound" tiptext="Attach a sound located in the library" helpid="2230" object="Sound" text=".attachSound(% idName %)" type="procedure" version="5" />
<string name="getBytesLoaded" tiptext="Returns the number of bytes that have download during the loadSound() operation." helpid="2900" object="Sound" text=".getBytesLoaded()" type="procedure" version="6" />
<string name="getBytesTotal" tiptext="Returns the size of the file that is currently being downloaded." helpid="2901" object="Sound" text=".getBytesTotal()" type="procedure" version="6" />
</ifdef>
<string name="start" tiptext="Starts playing the last attached sound" helpid="2484" object="Sound" text=".start(% secondsOffset, loops %)" type="procedure" version="5" />
</folder>
<ifdef mode="FEATURE_SOUND_COMPLETION_EVENT">
<folder name="Properties" id="Properties" tiptext="Properties of the Sound object" helpid="2865" version="6">
<string name="position" tiptext="Number of milliseconds sound has been playing for" helpid="2866" object="Sound" text=".position" version="6" />
<string name="duration" tiptext="Duration of sound in milliseconds" helpid="2867" object="Sound" text=".duration" version="6" />
</folder>
<folder name="Events" id="Events" tiptext="Events of the Sound object" helpid="2868" version="6">
<string name="onSoundComplete" tiptext="Callback invoked when sound has completed playing" helpid="2869" object="Sound" text=".onSoundComplete" version="6" type="event" />
<string name="onLoad" tiptext="Callback invoked when loaded sound has been received." helpid="2902" object="Sound" text=".onLoad(success)" version="6" type="event" />
</folder>
</ifdef>
</folder>
<ifdef mode="FEATURE_RESIZABLE_MOVIE_LAYOUT">
<folder name="Stage" id="Stage" sort="false" tiptext="Object that controls characteristics of the Flash movie stage"
helpid="2870" version="6" index="true">
<folder name="Methods" id="Methods" tiptext="Methods of Stage object" helpid="2871" version="6" sort="true">
<string name="addListener" tiptext="Adds a listener for the onResize event" helpid="2963" text="Stage.addListener(% listener %)" type="procedure" version="6" />
<string name="removeListener" tiptext="Removes a listener for the onResize event" helpid="2964" text="Stage.removeListener(% listener %)" type="procedure" version="6" />
</folder>
<folder name="Properties" id="Properties" tiptext="Properties of the Stage object" helpid="2872" version="6">
<string name="showMenu" tiptext="Flash movie context menu visibility flag: show (true), hide (false)" helpid="2873" text="Stage.showMenu" version="6" />
<string name="scaleMode" tiptext="Flash movie scaling behavior: show all, exact fit, no border, or no scale" helpid="2874" text="Stage.scaleMode" version="6" />
<folder name="TextField" id="TextField" sort="false" index="true" tiptext="Object which represents text field instances" helpid="2612" version="6">
<ifdef mode="FEATURE_TEXTFIELD_OBJECT">
<folder name="Methods" id="Methods" tiptext="Methods of text field objects" helpid="2940" version="6">
<string name="removeTextField" tiptext="Removes a text field created with createTextField" helpid="2991" object="TextField" text=".removeTextField()" version="6"
type="procedure" />
<string name="replaceSel" tiptext="Replace selected text with specified text" helpid="2941" object="TextField" text=".replaceSel(% text %)" version="6"
type="procedure" />
<string name="getTextFormat" tiptext="Get text format information" helpid="2943" object="TextField" text=".getTextFormat(% beginIndex, endIndex %)" version="6" />
<string name="setTextFormat" tiptext="Set text format information" helpid="2944" object="TextField"
<string name="getNewTextFormat" tiptext="Get text format information for new text" helpid="2997" object="TextField" text=".getNewTextFormat()" version="6" />
<string name="setNewTextFormat" tiptext="Set text format information for new text" helpid="2998" object="TextField" text=".setNewTextFormat(% textFormat %)" version="6"
type="procedure" />
<string name="getFontList" tiptext="Get array containing names of fonts on system" helpid="2969" text="TextField.getFontList()" version="6" />
<string name="addListener" tiptext="Adds a listener for onChanged/onScroller events" helpid="2986"
<string name="maxhscroll" tiptext="Maximum value of .hscroll in text field" helpid="2929" object="TextField" text=".maxhscroll" version="6" />
<string name="maxChars" tiptext="Maximum number of characters that may be entered" helpid="2930" object="TextField" text=".maxChars" version="6" />
<string name="embedFonts" tiptext="Boolean; if true, use embedded font outlines" helpid="2931" object="TextField" text=".embedFonts" version="6" />
<string name="html" tiptext="Boolean; if true, use HTML for variable representation" helpid="2932" object="TextField" text=".html" version="6" />
<string name="border" tiptext="Boolean; if true, display border around text field" helpid="2933" object="TextField" text=".border" version="6" />
<string name="background" tiptext="Boolean; if true, display background behind text field" helpid="2934" object="TextField" text=".background" version="6" />
<string name="wordWrap" tiptext="Boolean; if true, perform word wrap at line ends" helpid="2935" object="TextField" text=".wordWrap" version="6" />
<string name="password" tiptext="Boolean; if true, display asterisks to hide characters" helpid="2936" object="TextField" text=".password" version="6" />
<string name="multiline" tiptext="Boolean; if true, user may enter multipline lines" helpid="2937" object="TextField" text=".multiline" version="6" />
<string name="restrict" tiptext="Set of characters accepted by the text field" helpid="2992" object="TextField" text=".restrict" version="6" />
<string name="selectable" tiptext="Boolean; if true, user may select text with mouse/keyboard" helpid="2938" object="TextField" text=".selectable" version="6" />
<string name="length" tiptext="Length of text in .text property" helpid="2939" object="TextField" text=".length" version="6" />
<string name="textWidth" tiptext="Width of the text, in pixels" helpid="2950" object="TextField" text=".textWidth" version="6" />
<string name="textHeight" tiptext="Height of the text, in pixels" helpid="2951" object="TextField" text=".textHeight" version="6" />
</ifdef>
<ifdef mode="FEATURE_EVENT_MODEL">
<string name="tabIndex" tiptext="Tab index of text field" helpid="2727" object="TextField" text=".tabIndex" version="6" />
<folder name="Events" id="Events" tiptext="Events received by text field objects" helpid="2695" version="6">
<string name="onChanged" tiptext="Callback invoked when text changes" helpid="2696" object="TextField" text=".onChanged" version="6" type="event" />
<string name="onSetFocus" tiptext="Callback invoked when text field receives focus" helpid="2697" object="TextField" text=".onSetFocus(oldFocus)" version="6" type="event" />
<string name="onKillFocus" tiptext="Callback invoked when text field loses focus" helpid="2698" object="TextField" text=".onKillFocus(newFocus)" version="6" type="event" />
<string name="indent" tiptext="Indentation of initial line in paragraph" object="TextFormat" text=".indent" helpid="2924" version="6" />
<string name="blockIndent" tiptext="Indentation applied to all lines in paragraph" object="TextFormat" text=".blockIndent" helpid="3012" version="6" />
<string name="leading" tiptext="Inter-line leading of text" object="TextFormat" text=".leading" helpid="2925" version="6" />
<string name="bullet" tiptext="Boolean indicating whether text is bulleted" object="TextFormat" text=".bullet" helpid="2993" version="6" />
<folder name="Methods" id="Methods" tiptext="Methods of the LoadVars object" helpid="2723" version="6">
<string name="load" tiptext="Loads variables into Flash from an URL" helpid="2639" object="LoadVars" text=".load(% url %)" type="procedure" version="6" />
<string name="send" tiptext="Sends variables from Flash to an URL" helpid="2640" object="LoadVars" text=".send(% url, window, method %)" type="procedure" version="6" />
<string name="sendAndLoad" tiptext="Sends variables from Flash to an URL and downloads variable results" helpid="2641" object="LoadVars" text=".sendAndLoad(% url, targetObject, method %)" type="procedure" version="6" />
<string name="toString" tiptext="Converts this LoadVars object to a URL-encoded string" helpid="2638" object="LoadVars" text=".toString()" version="6" />
<string name="getBytesLoaded" tiptext="Returns the number of bytes loaded of variables" helpid="2642" object="LoadVars" text=".getBytesLoaded()" version="6" />
<string name="getBytesTotal" tiptext="Returns expected total downloaded size of variables" helpid="2643" object="LoadVars" text=".getBytesTotal()" version="6" />
</folder>
<folder name="Properties" id="Properties" tiptext="Properties of the LoadVars object" helpid="2724" version="6">
<string name="loaded" tiptext="Sets to true if load/sendAndLoad completed" helpid="2636" object="LoadVars" text=".loaded" version="6" />
<string name="contentType" tiptext="MIME Content Type for send/sendAndLoad" helpid="2895" object="LoadVars" text=".contentType" version="6" />
</folder>
<folder name="Events" id="Events" tiptext="Events received by the LoadVars object" helpid="2725" version="6">
<folder name="XML" id="XML" index="true" sort="false" tiptext="Object that allows you to work with XML documents" helpid="2561" version="5" >
<string name="new XML" tiptext="Creates new XML object" helpid="2556" text="new XML(% source %)" version="5" />
<folder name="Methods" id="Methods" tiptext="Methods of XML objects" helpid="2699" version="5">
<string name="appendChild" tiptext="Appends a child to an XML element" helpid="2544" object="XML" text=".appendChild(% child %)" type="procedure" version="5" />
<string name="cloneNode" tiptext="Clones this node, and optionally children" helpid="2547" object="XML" text=".cloneNode(% deep %)" version="5" />
<string name="createElement" tiptext="Creates a new XML element" helpid="2548" object="XML" text=".createElement(% nodeName %)" version="5" />
<string name="createTextNode" tiptext="Creates a new XML text node" helpid="2549" object="XML" text=".createTextNode(% text %)" version="5" />
<ifdef mode="FEATURE_XML_ENHANCEMENTS">
<string name="getBytesLoaded" tiptext="Returns the number of bytes loaded of XML" helpid="2644" object="XML" text=".getBytesLoaded()" version="6" />
<string name="getBytesTotal" tiptext="Returns expected total downloaded size of XML" helpid="2645" object="XML" text=".getBytesTotal()" version="6" />
</ifdef>
<string name="hasChildNodes" tiptext="Returns true if XML element has child nodes" helpid="2551" object="XML" text=".hasChildNodes()" version="5" />
<string name="insertBefore" tiptext="Inserts a child before another child in an XML element" helpid="2552" object="XML" text=".insertBefore(% newChild, beforeChild %)" type="procedure" version="5" />
<string name="load" tiptext="Loads XML into Flash from an URL" helpid="2554" object="XML" text=".load(% url %)" type="procedure" version="5" />
<string name="parseXML" tiptext="Parses XML string into this XML object" helpid="2564" object="XML" text=".parseXML(% string %)" type="procedure" version="5" />
<string name="removeNode" tiptext="Removes node from the XML document hierarchy" helpid="2566" object="XML" text=".removeNode()" type="procedure" version="5" />
<string name="send" tiptext="Sends XML from Flash to an URL" helpid="2567" object="XML" text=".send(% url, window %)" type="procedure" version="5" />
<string name="sendAndLoad" tiptext="Sends XML from Flash to an URL and download XML results" helpid="2568" object="XML" text=".sendAndLoad(% url, resultXML %)" type="procedure" version="5" />
<string name="toString" tiptext="Converts this XML object to an XML string" helpid="2569" object="XML" text=".toString()" version="5" />
</folder>
<folder name="Properties" id="Properties" tiptext="Properties of XML objects" helpid="2700" version="5">
<string name="loaded" tiptext="Sets to true if XML load/sendAndLoad completed" helpid="2555" object="XML" text=".loaded" version="5" />
<string name="firstChild" tiptext="First child of this XML node" helpid="2550" object="XML" text=".firstChild" version="5" />
<string name="lastChild" tiptext="Last child of this XML node" helpid="2553" object="XML" text=".lastChild" version="5" />
<string name="nextSibling" tiptext="Next sibling of this XML node" helpid="2557" object="XML" text=".nextSibling" version="5" />
<string name="previousSibling" tiptext="Previous sibling of this XML node" helpid="2565" object="XML" text=".previousSibling" version="5" />
<string name="nodeValue" tiptext="Value (text) of this XML text node" helpid="2560" object="XML" text=".nodeValue" version="5" />
<string name="nodeType" tiptext="Type of this node (1=element, 3=text)" helpid="2559" object="XML" text=".nodeType" version="5" />
<string name="nodeName" tiptext="Name of this XML element" helpid="2558" object="XML" text=".nodeName" version="5" />
<string name="attributes" tiptext="Associative array of XML element's attributes" helpid="2545" object="XML" text=".attributes" version="5" />
<string name="childNodes" tiptext="Array of XML element's child nodes" helpid="2546" object="XML" text=".childNodes" version="5" />
<string name="parentNode" tiptext="Parent of this XML node" helpid="2563" object="XML" text=".parentNode" version="5" />
<string name="status" tiptext="Status code returned by XML parser" helpid="2580" object="XML" text=".status" version="5" />
<string name="xmlDecl" tiptext="Text of the XML document's <?xml> declaration" helpid="2578" object="XML" text=".xmlDecl" version="5" />
<string name="docTypeDecl" tiptext="Text of the XML document's <!DOCTYPE> declaration" helpid="2579" object="XML" text=".docTypeDecl" version="5" />
<string name="ignoreWhite" tiptext="Set to true to ignore whitespace" helpid="2745" object="XML" text=".ignoreWhite" version="5" />
<string name="contentType" tiptext="MIME Content Type for send/sendAndLoad" helpid="2746" object="XML" text=".contentType" version="5" />
</folder>
<folder name="Events" id="Events" tiptext="Events received by XML objects" helpid="2701" version="5">
<folder name="Events" id="Events" tiptext="Events received by XMLSocket objects" helpid="2703" version="5">
<string name="onClose" tiptext="Function invoked when connection is closed" helpid="2540" object="XMLSocket" text=".onClose" version="5" type="event" />
<string name="onConnect" tiptext="Callback invoked when connection is established" helpid="2541" object="XMLSocket" text=".onConnect(success)" version="5" type="event" />
<string name="onXML" tiptext="Callback to receive XML from server" helpid="2542" object="XMLSocket" text=".onXML(xmlText)" version="5" type="event" />
<string name="onData" tiptext="Callback to receive raw data from server" helpid="2973" object="XMLSocket" text=".onData(data)" version="5" type="event" />
</folder>
</folder>
</folder>
<ifdef mode="FEATURE_CUSTOM_ACTIONS">
<folder name="Authoring" id="Authoring" tiptext="Objects specific to the Authoring Tool" helpid="2883" version="6">
<action id="toggleHighQuality" name="toggleHighQuality" tiptext="Toggles between low and high quality" helpid="2521" quickey="tq"/>
<action id="tellTarget" name="tellTarget" tiptext="Within tellTarget, actions operate on targeted movie clip" helpid="2518" quickey="tt" version="3" />
<action id="ifFrameLoaded" name="ifFrameLoaded" tiptext="Performs actions only if a particular frame is loaded" helpid="2357" quickey="il" version="3" />
</ifmode>
<ifmode mode="expert">
<string name="toggleHighQuality" tiptext="Toggles between low and high quality" helpid="2521" text="toggleHighQuality();\n" quickey="tq" />
<string name="tellTarget" tiptext="Within tellTarget, actions operate on targeted movie clip" helpid="2518" text="tellTarget (% target %) {\n}\n" quickey="tt" version="3" />
<string name="ifFrameLoaded" tiptext="Performs actions only if a particular frame is loaded" helpid="2357" text="ifFrameLoaded (% frame %) {\n}\n" quickey="il" version="3" />